Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

unicode-property-value-aliases

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unicode-property-value-aliases

Unicode property value alias mappings in JavaScript format.

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

unicode-property-value-aliases Build status

unicode-property-value-aliases offers Unicode property value alias mappings in an easy-to-consume JavaScript format.

It only contains the Unicode property names and values that are supported in ECMAScript RegExp property escapes.

It’s based on the PropertyValueAliases.txt data for Unicode v9.0.0.

Installation

To use unicode-property-value-aliases programmatically, install it as a dependency via npm:

$ npm install unicode-property-value-aliases

Then, require it:

const propertyValueAliases = require('unicode-property-value-aliases');

Usage

This module exports a Map object of which the keys are canonical property names and the values are Maps from property value aliases to canonical property value names. The most common usage is to convert a property value alias to its canonical form:

propertyValueAliases.get(property).get(propertyValue)

Examples:

propertyValueAliases.get('Bidi_Class').get('AL')
// → 'Arabic_Letter'

propertyValueAliases.get('Block').get('Alphabetic_PF')
// → 'Alphabetic_Presentation_Forms'

propertyValueAliases.get('Canonical_Combining_Class').get('KV')
// → 'Kana_Voicing'

Author

twitter/mathias
Mathias Bynens

License

unicode-property-value-aliases is available under the MIT license.

Keywords

FAQs

Package last updated on 15 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc